Problem Note 42329: The Replacement node Extreme Percentiles results might be incorrect if a Frequency variable is used
If you you specify the Extreme Percentiles Default Limits Method in the SAS® Enterprise Miner™ Replacement node, and if your data contains a variable with a frequency role, then the results of the node might be incorrect.
There are no errors or warnings to indicate that a problem occurred.
To work around the problem, do not use a frequency role. Instead, "expand" your data.
Example
Suppose that you want the Extreme Percentiles method, but your data set contains a variable called MY_FREQ_VARIABLE that you are using in a frequency role.
Delete the connection between your Replacement node and the predecessor node that contains the training data with frequency variable. Insert a SAS Code node in your path immediately before the Replacement node. Connect your predecessor node to the SAS Code node. Enter the following code using the Code Editor:
data &em_export_train;
set &em_import_data;
do my_temp_variable=1 to int(my_freq_variable);
output;
end;
drop my_temp_variable my_freq_variable;
run;
Close the SAS Code node, and run it. The code will expand the data by repeating each observation according to the value of the MY_FREQ_VARIABLE variable.
Connect the SAS Code node to your Replacement node, and run the Replacement node. The Replacement node will not use the variable MY_FREQ_VARIABLE as a frequency role because the SAS Code node dropped the variable. The Replacement node will use the correct number of observations because the SAS Code node created an expanded data set that does not need the frequency variable.
Operating System and Release Information
SAS System | SAS Enterprise Miner | z/OS | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows XP 64-bit Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows 2000 Advanced Server | 5.3 | | 9.1 TS1M3 SP4 | |
Microsoft Windows 2000 Datacenter Server | 5.3 | | 9.1 TS1M3 SP4 | |
Microsoft Windows 2000 Server | 5.3 | | 9.1 TS1M3 SP4 | |
Microsoft Windows 2000 Professional | 5.3 | | 9.1 TS1M3 SP4 | |
Microsoft Windows NT Workstation | 5.3 | | 9.1 TS1M3 SP4 | |
Microsoft Windows Server 2003 Datacenter Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows Server 2003 Standard Edition | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Microsoft Windows XP Professional | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Windows Vista | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Windows Vista for x64 | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
64-bit Enabled AIX | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
64-bit Enabled HP-UX | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
64-bit Enabled Solaris | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
HP-UX IPF | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Linux | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Linux on Itanium | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Solaris for x64 | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
Tru64 UNIX | 5.3 | 7.1 | 9.1 TS1M3 SP4 | 9.3 TS1M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | alert |
Date Modified: | 2012-09-05 13:18:03 |
Date Created: | 2011-02-08 13:46:33 |